A series of four-hour nutrient enrichment injections were conducted at Como Creek, CO during the summer of 2018 as part of a collaborative NSF funded research project that is evaluating the hydrologic and stoichiometric conditions that maximize N retention. Each series of enrichment injections consisted of the following treatments:
Grab samples were taken throughout the experiments to determine background concentrations, plateau concentrations and concentrations down the falling limb of the breakthroughcurve. This analysis will determine the uptake length, average distance traveled by a dissolved nutrient before biotic uptake, for nitrogen for each of the four treatments (Tank, Reisinger, and Rosi 2017).
Plateau longitudinal samples were taken every 50 meters throughout the stream reach each day during the plateau portion of the breakthrough curve. These samples represent the highest concentration of added nutrients throughout the experiment. In this step, raw chemistry data is read in, filtered to only include the plateau samples, and flagged for minimum and maximum detection limits. If value is below the minimum detection limit, one half of the detection limit is used as replace value.
Graph background longitudinal sample concentrations for the ions of interest (NO3, PO4, and Cl) each day. Visually inspect data for outliers, select which value from different in-lab runs (out of the series of duplicate and dilution runs) and create “good id” vector of chosen datapoints.
good_id<-c(75:83, 84:92, 93:109, 161, 163:170, 174, 193:198, 200, 204, 212:214, 218:229, 242, 249, 258:266, 268:276, 278:286, 288:295, 328, 369:377, 379:386, 437:440, 443, 444, 446:448, 458:460, 472:474, 505, 507, 508, 535:543, 545:552, 585, 636:643, 703:705, 715:717, 729:731)
#create dataset of only selected points
chem_clean_long <- chem_long%>%
filter(id %in% good_id)
#double check that Max Detection Limit is vaild
chem_clean_long_flagged<-chem_clean_long%>%
filter(MaxDL_flag== 'Yes')
count(chem_clean_long_flagged)
## # A tibble: 1 x 1
## n
## <int>
## 1 8
Graph selected plateau longitudinal sample concentrations for the ions of interest (NO3, PO4, and Cl) each day. Use this as a double check before you continue to use these data points in future analysis.
Tank, Jennifer L., Alexander J. Reisinger, and Emma J. Rosi. 2017. “Nutrient Limitation and Uptake.” In Methods in Stream Ecology: Third Edition, 3rd ed., 2:147–71. https://doi.org/10.1016/B978-0-12-813047-6.00009-7.